Please note: the viewport design is copied from Steve Den Beste's excellent blog, USS Clueless. Used with permission.


Saturday, March 13, 2004  

Team # Name Miles
Along
Course
Status Update
Time
22Red Team7Disabled08:38:52
21SciAutonics II7Disabled10:38:53
5Team Caltech1Disabled10:57:22
7Team DAD6Disabled10:44:53
25Virginia Tech0Disabled07:58:15

23
Axion Racing0Disabled10:36:22
2Team CajunBot0Disabled10:36:47
13Team ENSCO0Disabled10:57:22
4CIMAR0Disabled10:18:16
10Palos Verdes RoadWarriors0Disabled10:00:40
17SciAutonics1Disabled10:57:22
20Team TerraMax1Disabled10:57:22
15Team TerraHawk0Withdrawn 
9The Golem Group5Disabled10:57:22
16The Blue Team0Withdrawn 

via CNN.com

$1 million prize goes unclaimed

Robot race ends without a winner

Saturday, March 13, 2004 Posted: 1940 GMT (0340 HKT)

BARSTOW, California (AP) -- A $1 million race across the Mojave Desert by driverless robots ended Saturday after all 15 entries either broke down or withdrew, a race official said.

Two of the entries covered about seven miles of the roughly 150-mile course while eight failed to make it to the one-mile mark. Others crashed seconds after starting.

The race ended just before 11 a.m. after the final four competitors were disabled, said Col. Jose Negron, race program manager. Competitors suffered a variety of problems that included stuck brakes, broken axles, rollovers and malfunctioning satellite navigation equipment.

One six-wheeled robot built by a Louisiana team was disqualified after it became entangled in barbed wire.

"It's a tough challenge -- it's a grand challenge -- you can always bet that it's not doable. But if you don't push the limits, you can't learn," said Ensco Inc. engineer Venkatesh Vasudevan, shortly after his company's entry rolled onto its side several hundred yards from the starting gate.

The Pentagon's research and development agency planned to award $1 million to the first team whose microcircuit-and-sensor-studded vehicle could cover the roughly 150-mile course in less than 10 hours.

The Defense Advanced Research Projects Agency was sponsoring the Grand Challenge to foster development of autonomous vehicles that could be used in combat. Defense officials foresee using the driverless, remote control-free robots to ferry supplies in war zones.


posted by Gary Williams at 3:44 PM | link |
 

via The New York Times (registration required)

Astronomical Exaggerations

Published: March 13, 2004

Sean O'Keefe, administrator of the National Aeronautics and Space Administration, seems to be digging in his heels against any effort to overturn his cancellation of the next shuttle servicing mission to the Hubble Space Telescope, thereby sentencing this extraordinary scientific instrument to a probable death in 2007. Under pressure this week, Mr. O'Keefe agreed to solicit advice from the National Academy of Sciences, but made it clear that there is little chance he will reverse course. He wants the academy to focus on ways to extend Hubble's usefulness that do not require a visit by astronauts.

The administrator's reluctance makes it imperative that Congress insist on a full-scale analysis of the risks and benefits of servicing the Hubble, and that the academy refuse to undertake anything less. The premature termination of such a valuable scientific instrument is too important a decision to be left solely to an administrator who announced the cancellation without warning in January and has yet to justify the decision adequately.
[more]

posted by Gary Williams at 2:22 PM | link |
 

Changing Text Colors And The Glow Effect

It took a lot of fiddle to find the code for dynamically changing the color of text interactively, and changing the color and strength of the glow effect as well. But today, after looking through a bunch of university instruction pages, I found some that weren't written in Japanese so I could understand the code. So here's demo:

Word

Strength: 40 20 10 5 1


The first thing was to create a class for the glowing headline, so I modified my standard 24 point headline class to add the glow filter. One thing IS important -- it doesn't work if you don't set the size of the class -- the height and width. The glow doesn't appear unless those parameters are included.


<style type="text/css">
H2.myhead24glow {
position: relative;
top: 5px;
left: 5px;
font: italic 24pt times, serif;
color: #FFCC00;
filter:glow(color=#ffff00, strength=10, enabled=1);
width:600px;
height:40pt;
}
</style>


The next thing is the JavaScript code to enable the color and filter changes. I've included the script as a file, since it can appear as an immediate part of the post and doesn't have to be added to the page template. So the code that follows first shows the include code, and then the code within the .js file:


<script type="text/javascript" src="http://home.corninglink.com/gwms/changeGlowColor.js"></script>

<!--
function changeGlowColor(theColor)
{
headline.filters["glow"].color = theColor ;
}
function changeGlowStrength(theStrength)
{
headline.filters["glow"].strength = theStrength ;
}
function setGlow(theGlow)
{
headline.filters["glow"].enabled = theGlow ;
}
function wordColor(theColor) {
headline.style.color = theColor;
}
// -->


Notice that the references to the filter attributes use embedded arrays in the document defintitions, attached to the object ID: headline.filters["glow"].color and headline.filters["glow"].strength and headline.filters["glow"].enabled. The style attribute of the object are used to set the color: headline.style.color.

In the HTML below, notice the class and id clauses in the headline definition -- they are required for use in the JavaScript code. You should probably also note the style clauses in the button definitions, which set the button colors to match the effects they activate. The onClick clauses call the JavaScript functions to produce the desired effects:


<h2 id=headline class=myhead24glow>Word</h2>

<input type=button style="background-color:#FFCC00;" value="Glow Orange" onClick="changeGlowColor('#FFcc00');">
<input type=button style="background-color:#FF0000;" value="Glow Red" onClick="changeGlowColor('#FF0000');">
<input type=button style="background-color:#00FF00;" value="Glow Green" onClick="changeGlowColor('#00FF00');">
<input type=button style="background-color:#0000FF;" value="Glow Blue" onClick="changeGlowColor('#0000FF');">
<input type=button style="background-color:#FFff00;" value="Glow Yellow" onClick="changeGlowColor('#FFff00');">
<input type=button style="background-color:#ff00FF;" value="Glow Maroon" onClick="changeGlowColor('#FF00ff');">
<input type=button style="background-color:#00ffFF;" value="Glow Turquoise" onClick="changeGlowColor('#00FFFF');">
<input type=button style="background-color:#efefef;" value="Glow Grey" onClick="changeGlowColor('#efefef');">

<b>Strength: 40 <INPUT TYPE="Radio" NAME="strength" onClick="changeGlowStrength('40');" VALUE="40"> 20 <INPUT TYPE="Radio" NAME="strength" onClick="changeGlowStrength('20');" VALUE="20"> 10 <INPUT TYPE="Radio" NAME="strength" onClick="changeGlowStrength('10');" VALUE="10" CHECKED> 5 <INPUT TYPE="Radio" NAME="strength" onClick="changeGlowStrength('5');" VALUE="5"> 1 <INPUT TYPE="Radio" NAME="strength" onClick="changeGlowStrength('1');" VALUE="1"></b>

<input type=button style="filter:glow(color=#ffcc00,strength=10);" value="Glow On" onClick="headline.filters.glow.enabled=1;">
<input type=button value="Glow Off" onClick="headline.filters.glow.enabled=0;">
<input type=button style="background-color:#FFCC00;" value="Word Orange" onClick="wordColor('#ffcc00');">
<input type=button style="background-color:#FF0000;" value="Word Red" onClick="wordColor('#ff0000');">
<input type=button style="background-color:#00FF00;" value="Word Green" onClick="wordColor('#00ff00');">
<input type=button style="background-color:#0000FF;" value="Word Blue" onClick="wordColor('#0000ff');">
<input type=button style="background-color:#FFFF00;" value="Word Yellow" onClick="wordColor('#ffFF00');">
<input type=button style="background-color:#FF00FF;" value="Word Maroon" onClick="wordColor('#ff00ff');">
<input type=button style="background-color:#00ffff;" value="Word Turquoise" onClick="wordColor('#00ffff');">
<input type=button style="background-color:#000000color:#ffffff;" value="Word Black" onClick="wordColor('#000000');">

posted by Gary Williams at 3:38 AM | link |


Friday, March 12, 2004  

Quote of the day (from Slashdot)



Got Mole problems?
Call Avogadro at 6.02 x 10^23.

posted by Gary Williams at 10:46 PM | link |
 

An experimental post -- does a separate referrer script work?





Using a script that refers to Meg's server doesn't work -- it hangs the page...

posted by Gary Williams at 1:43 AM | link |
 

Colored Backgrounds, Colored Text

I was thinking about logo design today and it occured to me (duh) that logos often contrast colored text against colored backgrounds. In the process, I made another one of the color charts -- this one's not animated, but it's nice enough. The text shows the text color at the top of each cell, the background color code at the bottom of the cell. The first time through I just used <SPAN> frames, but when I added the background color text it was hard to get them lined up together in pairs, so I recoded it using table cells:

 FFFFFF 
 000000 
 CCCCFF 
 330000 
 9999FF 
 660000 
 6666FF 
 990000 
 3333FF 
 CC0000 
 0000FF 
 FF0000 
 FFFFFF 
 000000 
 CCCCFF 
 003300 
 9999FF 
 006600 
 6666FF 
 009900 
 3333FF 
 00CC00 
 0000FF 
 00FF00 
 FFFFFF 
 000000 
 CCCCFF 
 000033 
 9999FF 
 000066 
 6666FF 
 000099 
 3333FF 
 0000CC 
 0000FF 
 0000FF 
 FF0000 
 00FF00 
 FF3333 
 00CC00 
 FF6666 
 009900 
 FF9999 
 006600 
 FFCCCC 
 003300 
 FFFFFF 
 000000 
 FF0000 
 FF0000 
 FF3333 
 CC0000 
 FF6666 
 990000 
 FF9999 
 660000 
 FFCCCC 
 330000 
 FFFFFF 
 000000 
 FF0000 
 0000FF 
 FF3333 
 0000CC 
 FF6666 
 000099 
 FF9999 
 000066 
 FFCCCC 
 000033 
 FFFFFF 
 000000 
 FFFFFF 
 000000 
 CCFFCC 
 000033 
 99FF99 
 000066 
 66FF66 
 000099 
 33FF33 
 0000CC 
 00FF00 
 0000FF 
 FFFFFF 
 000000 
 CCFFCC 
 003300 
 99FF99 
 006600 
 66FF66 
 009900 
 33FF33 
 0000CC 
 00FF00 
 00FF00 
 FFFFFF 
 000000 
 CCFFCC 
 330000 
 99FF99 
 660000 
 66FF66 
 990000 
 33FF33 
 0000CC 
 00FF00 
 FF0000 


posted by Gary Williams at 1:41 AM | link |


Thursday, March 11, 2004  

Dish Network CEO Announces Settlement

Yesterday, I sent Charlie Ergen, the CEO of Dish Network, an email with the subject line, "this is something of a crock". This afternoon I got a reply, saying that Dish and Viacom had come to an agreement an I'll be able to watch The Daily Show again. Here's the letter from Charlie:


From: CEO of Dish Network
Date: 03/11/04 14:54:15
To: 'Gary Williams'
Subject: RE: this is something of a crock

Dear Loyal DISH Network Customer,

I am very pleased to announce that we've successfully reached a long-term agreement with Viacom to provide you with CBS and MTV Networks including MTV, Comedy Central, and Nickelodeon. I am happy to say that this agreement will allow us to continue to provide you the lowest all-digital price everyday.

I understand that it has been a difficult 36 hours to be without these popular channels. We appreciate your patience, your support for DISH Network and your continued business.

As promised, you will receive a credit on your next billing statement. In addition, we would like to thank you for all of your support by sending you a free DISH On Demand Pay-Per-View coupon that will allow you to view upcoming hits like "Cat in the Hat" and "School of Rock." The coupon will arrive in your April billing statement. Enjoy a movie on us.

Everyone at DISH Network will continue to fight to provide the best possible programming and services at the lowest possible price, every day.

Thank you for your loyalty and thank you for being a DISH Network customer.

Charlie Ergen
CEO
DISH Network

Your message:



I really enjoy the Daily Show and others on the Comedy Channel. I hope you settle this soon, or we will have to switch to DirectTV or call the cable company.

--Gary Williams
----
Homepage: http://home.corninglink.com/gwms/
Blog: http://tfs_reluctant.blogspot.com/
Resume: http://home.corninglink.com/gwms/resume.htm
Store: http://www.cafeshops.com/tfsreluctant/
Phone: (607) 775-0408
Permanent email: gwms@corninglink.com


posted by Gary Williams at 10:56 AM | link |
 

Open Calculator Window




Code:

<center>
<input type=button onClick="nwin=window.open('http://home.corninglink.com/gwms/calculat.htm', 'calculatwindow', 'resizable,width=320,height=200');nwin.focus();" value="Open Calculator Window">
<center>


If you want the JavaScript code (from The JavaScript Source!! http://javascript.internet.com) you can right-click here: http://home.corninglink.com/gwms/calculat.htm and select "Save Target" and copy the code to your machine...

posted by Gary Williams at 5:05 AM | link |
 

Setting Up Startup Programs Under XPHome

It's irritating how obtuse the basic things are in M$ operating systems. Before XP, setting up the stuff you wanted to run every time you ran the computer was pretty simple — you just put a program shortcut in the startup directory. Under XP, it seems to be obscure, more or less by intention...

Today I finally took the time to look through the help files to figure out how to do it in XP — when I installed ScreenHunter (the screen grabber program) it offered to start up every time you booted, but I wasn't sure whether I would like the program, so I said no.

But now it's a nuisance — every time I want to grab an image from a flash illustration, or video picture (or whatever) I have to minimize the current window, start ScreenHunter, then reopen the window, position the cursor and push F6 to get the grabber active. It works, but it's a nuisance.

And I always open Notetab first, partly so I've got an editor ready for use and partly because Notetab has a pasteboard preservation feature, where everything you copy with a CTL-C goes into a file buffer for later use as well as immediate copying.

So I wanted to start Notetab and ScreenHunter...

Here's how:

  • Turns out what you have to do is right-click the StartMenu button, select Properties.

  • In the properties Start Menu tab, select Classic Start menu — that activates the Customize button — push that.

  • That brings up the Customize Classic Start Menu box — click Advanced.

  • That brings up the Start Menu/Programs folder — click the + sign to open the directory tree below programs and several directories appear — click on the Startup folder.


  • On my system, that folder was empty (even though a group of things appeared in the task bar incon area during startup like the Quicktime icon, the PC-cillin antivirus icon and so on — maybe they're in a system startup directory somewhere I haven't bothered to find).

  • Copy shortcuts into the Startup folder and close it. When you boot the programs will start.

  • Click the OK button on the Customize Classic Start Menu box

  • Click the Start Menu button (unless you want to stay in the Classic Start Menu style) and click OK to close the box — and you're done, when you boot the new programs will start up after you log in, automatically.

posted by Gary Williams at 1:50 AM | link |


Wednesday, March 10, 2004  

via BBC News
Higgs Decay, CERN (?)
Once produced, the Higgs boson decays very quickly.

'God particle' may have been seen

By Paul Rincon
BBC News Online science staff

A scientist says one of the most sought after particles in physics - the Higgs boson - may have been found, but the evidence is still relatively weak.

Peter Renton, of the University of Oxford, says the particle may have been detected by researchers at an atom-smashing facility in Switzerland.

Standard ModelThe Higgs boson explains why all other particles have mass and is fundamental to a complete understanding of matter.

Dr Renton's assessment of the Higgs hunt is published in Nature magazine.

"There's certainly evidence for something, whether it's the Higgs boson is questionable," Dr Renton, a particle physicist at Oxford, told BBC News Online.
[more]


posted by Gary Williams at 11:22 PM | link |
 

via cryptome.org and JesterJones.ca.za

Get Your Own Protest Posters — Free (if you've got the spare 18Meg...)

Protest Posters

posted by Gary Williams at 4:05 PM | link |
 

via The New York Times (registration required)
Hubble Deep Space
NASA
The image required 800 exposures taken over the course of 400 Hubble orbits around Earth.

Images Reveal Deepest Glance Into Universe

By DENNIS OVERBYE
Published: March 10, 2004

BALTIMORE, March 9 — Astronomers using the Hubble Space Telescope said Tuesday that they had reached far enough out in space and back in time to be within "a stone's throw" of the Big Bang itself.

In a ceremony that was part science workshop, part political rally and part starting gun for an astronomical gold rush, astronomers at the Space Telescope Science Institute on the Johns Hopkins University campus unveiled what they said was the deepest telescopic view into the universe ever obtained.

Along with detecting roughly 10,000 galaxies, the million-second exposure of a small patch of dark sky in the constellation Fornax captured objects a quarter as bright as previous surveys.

Several dozen faint reddish spots, the astronomers said, could even be infant galaxies just emerging from the "dark ages" that prevailed in the first half billion years after the Big Bang when stars were just beginning to form.

"We might have seen the end of the beginning," said Dr. Anton Koekemoer of the institute, who was part of the project.

He and others cautioned, however, that more work would be required before astronomers know if their surmises are correct. Astronomers will not be able to take a deeper picture until the James Webb Space Telescope goes into orbit in 2011.
[more]

posted by Gary Williams at 3:23 AM | link |
 

via riley dog

Self reliance
Beside Earth I’ve hung Mars.
They look like testicles
keeping each other company.
The red planet’s really brown,
you could color it in
with crayons made of dirt.
It’s Earth minus the recipe
for everglades and cows.
:: Bob Hicok
via whiskey river
Autopsychography
The poet is a faker
Who's so good at his act
He even fakes the pain
Of pain he feels in fact.

And those who read his words
Will feel in what he wrote
Neither of the pains he has
But just the one they don't.

And so around its track
This thing called the heart winds,
A little clockwork train
To entertain our minds.
- Fernando Pessoa
13+ different ways of looking at one of Pessoa's poems

posted by Gary Williams at 2:21 AM | link |


Tuesday, March 09, 2004  

via fark.com and News Scotsman.com

Baby Diot Coke — in 1379



Naming your child after a popular soft drink could be seen as a little bit faddish but the parents of young Diot Coke might be forgiven – they gave their baby daughter the name way back in 1379.

Researchers at the National Archives believe that the little girl, born in the West Riding of Yorkshire, was the unfortunate victim of the corruption of the name Dionisia. One of the diminutives derived from that name on its path to the modern day Denise was Diot.

The girl's surname is believed to be a variation on the name Cook.

George Redmonds, the author of the organisation?s Ancestors magazine, discovered in his scrutiny of the birth archives that names now considered to be masculine, such as Philip and Thomas, were once used for girls in the 14th century.

Redmond also found that names such as Godelena, Helwise, Idony, Avice and Dionisia were more popular than some of the names now considered traditional, such as Mary.

posted by Gary Williams at 3:34 PM | link |
 

Spirit And Opportunity Have Livejournals

Spirit
                             
Mars Is War

http://www.livejournal.com/users/spiritrover/
http://www.livejournal.com/users/opportunitygrrl/
Opportunity

posted by Gary Williams at 3:00 PM | link |
 

via Uninstalled

The best T-shirt of the year:

t-shirt

posted by Gary Williams at 2:24 AM | link |
 

See the leprechaun camera for St. Patrick's Day:



Leprechaun CameraLeprechaun Camera
http://www.irelandseye.com/leprechaun/webcam.htm


Update: Today's picture is on the right...(or to the bottom, depending on your screenwidth).

posted by Gary Williams at 12:57 AM | link |


Monday, March 08, 2004  

via The Mondrian Machine at ptank.com

My Mondrian


Thanks to Susan at Easy Bake Coven for the directions to the Mondrian Machine and the note acknowledging Mondrian's birthday...

posted by Gary Williams at 2:20 AM | link |
 

via Angel Doorway Bubble Magick
Red BallThe Bubble you have chosen indicates you may be seeking strength, both emotionally as well as physically. This bubble represents the body... the earth, and a strong will toward the physical. It is associated with the astrological sign Aries, or it's Chinese counterpart, the Dragon.
~*~

Perhaps you're needing strength to overcome an obstacle. Wearing small bits of red in your wardrobe will help to promote this strength. But... be careful not to wear too much red, as it can make you appear to be too overbearing or domineering.
~*~

This bubble represents Physical Power and vitality, and at it's worse, a possible attempt to force a matter at hand. A combination of blue and white worn on your left side, can help you to get your point across in a less forceful way, allowing others to be more receptive to your ideas.
~*~

Individuals who carry this shade in their aura have strong wills and can be forceful in their attempts to gain the respect of others. These individuals tend to have high tempers, which is reflected in their nervous system. Most jittery or shaky individuals have a great deal of red in their auras, and could use some white to offset this nervous condition.
~*~

Wearing articles of this bright red color, can help balance hormones and menstrual cycles, as well as promote fertility.

posted by Gary Williams at 1:20 AM | link |


Sunday, March 07, 2004  

Full Color Display Tool



For some reason this display causes errors on the page when it loads, and I wanted a permanent link to the tool anyways, so I've copied the post text and added it to the permanent file.

While I was at it, I added a table to display the color values so you can copy 'em if you see something you like. It wouold be impossible here, because it makes the page way too wide to show in this format. Bu'hey, maybe you'll like it. The link will stay over there on the right Gary's Color Table Display Tool among the programming sites up top in the list. Or you can just copy the file if you don't need whatever updates I might make: http://home.corninglink.com/gwms/ColorTableDisplay.htm.

If you have any suggestions, please leave a comment...

posted by Gary Williams at 6:30 PM | link |
 

via Space.com
5 Planets

Planet Panorama: See Five Worlds at Once

By Joe Rao
SPACE.com's Night Sky Columnist

All five planets that can be visible to the naked eye will appear together in the evening sky later this month in a viewing opportunity that won't be matched for 32 years.

Going in order from West to East, the cast of planetary characters will be Mercury, Venus, Mars, Saturn and Jupiter. All but Mercury are already visible. The winged messenger is the most elusive of the five, being so close to the Sun that it never gets very far above the horizon, and always only near dawn or dusk.

By late March, Mercury will be about as high as possible at dusk for viewers at mid-northern latitudes, setting the stage for a memorable few weeks of easy-to-do backyard skywatching.

Where to look

Mercury will hover above the setting Sun in the West. Higher up, brilliant Venus already dominates the stage, outshining all stars and planets. Mars, much dimmer than it was last summer, is high in the southwestern sky. Saturn is nearly overhead now at dusk and to the south. Jupiter, now stunningly bright, is king of the eastern evening sky, rising just as the Sun goes down.
[more]

posted by Gary Williams at 1:04 PM | link |
 

via The Coffee Sutras

Morning verses


The return of the birds--
as indicated by two cats
frequently seen staring intently out windows
tails twitching in unison.

posted by Gary Williams at 1:10 AM | link |

Support Bloggers' Rights!
Support Bloggers' Rights!

 

Free JavaScripts provided by
The JavaScript Source


Free Guestmap from Bravenet.com Free Guestmap from Bravenet.com
 


The WeatherPixie
Google

Search WWW TFS Reluctant

Googlism


Who What Where When
counter
homepage, email
and store
Blogs
Defunct Blogs
Toons
News, science
and stuff
Politics, government
and stuff
Cory
Doctorow's
Writing
Web and
Webhack stuff
archives